Change background color of the box behind the pricing of a booking/inquiry widget:
.alert {
background: #add hex color code here !important;
}
Update text for registration on hosted website
<script>
var registrationFix = function() {
const dts = document.querySelectorAll('dt');
for (var j = 0; j < dts.length; j++)
{
if (dts[j].textContent.includes('Registration Expiration Date'))
{
dts[j].textContent = 'Registration Date';
return;
}
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', registrationFix);
} else {
registrationFix();
}
</script>
var registrationFix = function() {
const dts = document.querySelectorAll('dt');
for (var j = 0; j < dts.length; j++)
{
if (dts[j].textContent.includes('Registration Expiration Date'))
{
dts[j].textContent = 'Registration Date';
return;
}
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', registrationFix);
} else {
registrationFix();
}
</script>
Remove registration number from hosted website
> #registration,
#registration + dl {
display: none !important;
}